home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
1035
/
1035.xpi
/
chrome
/
1clickweather.jar
/
content
/
1clickweather
/
js
/
config
/
loadconfig.js
< prev
next >
Wrap
Text File
|
2008-10-05
|
830b
|
27 lines
// ⌐ 2005 The Weather Channel Interactive, Inc. All Rights Reserved.
// create the global variables to access configurations
var GlobalUserConfig = null;
var GlobalAppConfig = null;
var GlobalConfigManager = null;
// load up config javascript
jsInclude("chrome://1clickweather/content/js/utils/filemanager.js");
jsInclude("chrome://1clickweather/content/js/config/configutils.js");
jsInclude("chrome://1clickweather/content/js/config/configmanager.js");
jsInclude("chrome://1clickweather/content/js/config/appconfig.js");
jsInclude("chrome://1clickweather/content/js/config/userconfig.js");
try{
GlobalConfigManager = new ConfigManager();
GlobalUserConfig = new GlobalConfigManager.getUserConfig();
GlobalAppConfig = new GlobalConfigManager.getAppConfig();
}catch(e){
alert("error in loadconfig.js: " + e);
}